home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / dl_exsrc.zoo / fsize.c < prev    next >
C/C++ Source or Header  |  1994-06-27  |  151b  |  11 lines

  1. #include <stat.h>
  2.  
  3. static struct stat S;
  4.  
  5. long fsize(const char *name)
  6. {
  7.   if (stat(name, &S) < 0)
  8.     return -1;
  9.   else return S.st_size;
  10. }
  11.